mirror of
https://github.com/Eugeny/tabby.git
synced 2024-12-22 10:01:40 +03:00
9 lines
186 B
TypeScript
9 lines
186 B
TypeScript
export const BOOTSTRAP_DATA = 'BOOTSTRAP_DATA'
|
|
|
|
export interface BootstrapData {
|
|
config: Record<string, any>
|
|
executable: string
|
|
isFirstWindow: boolean
|
|
windowID: number
|
|
}
|