prism-code-editor
Version:
Lightweight, extensible code editor component for the web using Prism
12 lines (11 loc) • 457 B
TypeScript
export type LiteralAST = import('./helper/util').LiteralAST;
export type CapturingGroup = import('regexpp/ast').CapturingGroup;
export type Element = import('regexpp/ast').Element;
export type Group = import('regexpp/ast').Group;
export type LookaroundAssertion = import('regexpp/ast').LookaroundAssertion;
export type Pattern = import('regexpp/ast').Pattern;
export type Highlight = {
start: number;
end: number;
label?: string | undefined;
};