constants.ts 482 字节
Newer Older
fxy060608's avatar
fxy060608 已提交
1
export const VD_SYNC = 'vdSync'
fxy060608's avatar
fxy060608 已提交
2

fxy060608's avatar
fxy060608 已提交
3
export const ON_WEBVIEW_READY = 'onWebviewReady'
fxy060608's avatar
fxy060608 已提交
4

Q
qiang 已提交
5 6 7 8
export const PAGE_SCROLL_TO = 'pageScrollTo'

export const LOAD_FONT_FACE = 'loadFontFace'

fxy060608's avatar
fxy060608 已提交
9 10 11 12 13 14 15 16 17 18
export let ACTION_MINIFY = true
// __tests__
export function setActionMinify(minify: boolean) {
  ACTION_MINIFY = minify
}
export const ACTION_TYPE_DICT = 0

export type Value = string | number | boolean | null
export type Dictionary = Value[]
export type DictAction = [typeof ACTION_TYPE_DICT, Dictionary]