mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-11 01:18:12 +08:00
10 lines
264 B
TypeScript
10 lines
264 B
TypeScript
|
import type { SakuraOptions as SakuraOptionsAbstract } from '@/admin/optionsType'
|
||
|
|
||
|
export interface SakuraOptions extends SakuraOptionsAbstract {
|
||
|
[namespace: string]: any
|
||
|
}
|
||
|
|
||
|
const config = (window as any).InitState.config as SakuraOptions
|
||
|
|
||
|
export default config
|