mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
9135fb94ad
* feat: support web document and cypress test * fix: support blocks * fix: support table and outline * fix: update nginx
13 lines
397 B
TypeScript
13 lines
397 B
TypeScript
/// <reference types="vite/client" />
|
|
/// <reference types="vite-plugin-svgr/client" />
|
|
/// <reference types="vite-plugin-terminal/client" />
|
|
/// <reference types="cypress" />
|
|
/// <reference types="cypress-plugin-tab" />
|
|
interface Window {
|
|
refresh_token: (token: string) => void;
|
|
invalid_token: () => void;
|
|
WebFont?: {
|
|
load: (options: { google: { families: string[] } }) => void;
|
|
};
|
|
}
|