mirror of
https://github.com/mashirozx/sakura.git
synced 2024-11-13 10:28:13 +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
|