-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
nicfv
committed
Mar 28, 2024
1 parent
7228753
commit bded37c
Showing
1 changed file
with
14 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
export interface SVGIDMapping { | ||
svgId: string; | ||
mappedName: string; | ||
readonly svgId: string; | ||
readonly mappedName: string; | ||
} | ||
export interface ACESVGOptions { | ||
captureMappings: boolean; | ||
addAllIDs: boolean; | ||
svgSource: string; | ||
svgAutocomplete: boolean; | ||
eventSource: string; | ||
eventAutocomplete: boolean; | ||
initSource: string; | ||
initAutocomplete: boolean; | ||
readonly captureMappings: boolean; | ||
readonly addAllIDs: boolean; | ||
readonly svgSource: string; | ||
readonly svgAutocomplete: boolean; | ||
readonly eventSource: string; | ||
readonly eventAutocomplete: boolean; | ||
readonly initSource: string; | ||
readonly initAutocomplete: boolean; | ||
svgMappings: SVGIDMapping[]; | ||
} | ||
export interface ACESVGDefaults { | ||
svgNode: string; | ||
initSource: string; | ||
eventSource: string; | ||
svgMappings: SVGIDMapping[]; | ||
readonly svgNode: string; | ||
readonly initSource: string; | ||
readonly eventSource: string; | ||
readonly svgMappings: SVGIDMapping[]; | ||
} |