8 lines
137 B
TypeScript
8 lines
137 B
TypeScript
interface IBaseAPI {
|
|
uploadFile: (path: string) => void
|
|
setTitle: (value: string) => void
|
|
}
|
|
|
|
interface Window {
|
|
baseAPI: IBaseAPI
|
|
} |