mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
|
import { UrlTweaks } from 'app/common/gristUrls';
|
||
|
|
||
|
export interface IHooks {
|
||
|
iframeAttributes?: Record<string, any>,
|
||
|
fetch?: typeof fetch,
|
||
|
baseURI?: string,
|
||
|
urlTweaks?: UrlTweaks,
|
||
|
}
|
||
|
|
||
|
export const defaultHooks: IHooks = {
|
||
|
};
|