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/types/audio.d.ts DELETED
@@ -1,8 +0,0 @@
1
- /*
2
- Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
3
- License: MIT
4
- */
5
-
6
- declare module '*.mp3'
7
- declare module '*.ogg'
8
- declare module '*.mp3'
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
@@ -1,9 +0,0 @@
1
- /*
2
- Copyright: © 2019 Dario Passariello <dariopassariello@gmail.com>
3
- License: MIT
4
- */
5
-
6
- declare module "*.svg" {
7
- const value: any
8
- export default value
9
- }
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
- }