layerpro 0.7.1 → 0.7.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/README.md +2 -3
- package/README.md +2 -3
- package/index.js +1 -2
- package/package.json +3 -10
- package/types/layerpro.d.ts +3 -1
- package/index.js.map +0 -1
- package/types/audio.d.ts +0 -8
- package/types/files.d.ts +0 -21
- package/types/icon.d.ts +0 -19
- package/types/image.d.ts +0 -9
- package/types/styles.d.ts +0 -21
package/types/audio.d.ts
DELETED
package/types/files.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
-
License: MIT
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
declare module '*.htm'
|
|
7
|
-
declare module '*.html'
|
|
8
|
-
|
|
9
|
-
////////////////////////////////////////////////////////////////
|
|
10
|
-
|
|
11
|
-
declare module '*.js' {
|
|
12
|
-
const value: any
|
|
13
|
-
export default value
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
////////////////////////////////////////////////////////////////
|
|
17
|
-
|
|
18
|
-
declare module "*.svg" {
|
|
19
|
-
const value: any
|
|
20
|
-
export default value
|
|
21
|
-
}
|
package/types/icon.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
-
License: MIT
|
|
4
|
-
*/
|
|
5
|
-
|
|
6
|
-
type icon = {}
|
|
7
|
-
|
|
8
|
-
declare module 'icon'
|
|
9
|
-
declare var icon: any
|
|
10
|
-
|
|
11
|
-
////////////////////////////////////////////////////////////////
|
|
12
|
-
|
|
13
|
-
declare global {
|
|
14
|
-
interface globalThis {
|
|
15
|
-
icon: any
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
icon = globalThis.icon || {}
|
package/types/image.d.ts
DELETED
package/types/styles.d.ts
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
|
|
3
|
-
License: MIT
|
|
4
|
-
*/
|
|
5
|
-
declare module '*.less' {
|
|
6
|
-
const resource: { [key: string]: any }
|
|
7
|
-
export = resource
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
////////////////////////////////////////////////////////////////
|
|
11
|
-
|
|
12
|
-
declare module '*.scss' {
|
|
13
|
-
const resource: { [key: string]: any }
|
|
14
|
-
export = resource
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
////////////////////////////////////////////////////////////////
|
|
18
|
-
declare module '*.sass' {
|
|
19
|
-
const resource: { [key: string]: any }
|
|
20
|
-
export = resource
|
|
21
|
-
}
|