AppFlowy/frontend/appflowy_web_app/src/vite-env.d.ts
Kilu.He 9135fb94ad
feat: support web document and cypress test (#5116)
* feat: support web document and cypress test

* fix: support blocks

* fix: support table and outline

* fix: update nginx
2024-04-29 14:32:14 +08:00

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;
};
}