notion-helper
Version:
A library of functions for working more easily with the Notion API
25 lines • 703 B
text/typescript
export default CONSTANTS;
declare namespace CONSTANTS {
let MAX_TEXT_LENGTH: number;
let MAX_BLOCKS: number;
let MAX_BLOCKS_REQEST: number;
let MAX_CHILD_ARRAY_DEPTH: number;
let MAX_PAYLOAD_SIZE: number;
namespace IMAGE_SUPPORT {
let FORMATS: string[];
}
namespace VIDEO_SUPPORT {
let FORMATS_1: string[];
export { FORMATS_1 as FORMATS };
export let SITES: string[];
}
namespace AUDIO_SUPPORT {
let FORMATS_2: string[];
export { FORMATS_2 as FORMATS };
}
namespace DOCUMENT_SUPPORT {
let FORMATS_3: string[];
export { FORMATS_3 as FORMATS };
}
}
//# sourceMappingURL=constants.d.mts.map