MCPcopy
hub / github.com/ionic-team/ionicons / SvgData

Interface SvgData

scripts/types.ts:3–53  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { PluginConfig } from 'svgo';
2
3export interface SvgData {
4 /**
5 * airplane-outline.svg
6 */
7 fileName: string;
8
9 /**
10 * airplane
11 */
12 title: string;
13
14 /**
15 * /src/svg/airplane-outline.svg
16 */
17 srcFilePath: string;
18
19 /**
20 * /dist/ionicons/svg/airplane-outline.svg
21 */
22 optimizedFilePath: string;
23
24 /**
25 * /dist/svg/airplane-outline.svg
26 */
27 distSvgFilePath: string;
28
29 /**
30 * optimized svg content
31 */
32 optimizedSvgContent?: string;
33
34 /**
35 * airplane-outline
36 */
37 iconName: string;
38
39 /**
40 * airplane-outline.mjs
41 */
42 fileNameMjs: string;
43
44 /**
45 * airplane-outline.js
46 */
47 fileNameCjs: string;
48
49 /**
50 * airplaneOutline
51 */
52 exportName: string;
53}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…