mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
10 lines
167 B
TypeScript
10 lines
167 B
TypeScript
|
export interface JSResource {
|
||
|
src: string
|
||
|
loadTime: 'beforeDOMReady' | 'afterDOMReady'
|
||
|
}
|
||
|
|
||
|
export interface StaticResources {
|
||
|
css: string[],
|
||
|
js: JSResource[]
|
||
|
}
|