mirror of
https://github.com/penxio/penx.git
synced 2026-01-13 15:38:12 -05:00
21 lines
437 B
TypeScript
21 lines
437 B
TypeScript
// selection container id
|
|
export const PENX_SELECTION_CONTAINER = 'penx-selection-container'
|
|
|
|
// sandbox iframe id
|
|
export const PENX_SANDBOX_BOARD_IFRAME = 'penx-sandbox-board-iframe'
|
|
|
|
export enum SandBoxMessageType {
|
|
getSelectedHtml = 'getSelectedHtml',
|
|
|
|
initSandbox = 'initSandbox',
|
|
|
|
startOcr = 'startOcr',
|
|
}
|
|
|
|
export enum ClippingTypeEnum {
|
|
// selection content
|
|
area = 'area',
|
|
// selection website
|
|
website = 'website',
|
|
}
|