UNPKG

@amplitude/ampli

Version:

Amplitude CLI

11 lines (10 loc) 260 B
export declare type SegmentType = 'code' | 'string' | 'comment'; export declare type Segment = { segmentType: SegmentType; startIndex: number; length: number; }; export declare type ParseResult = { source: string[]; segments: Segment[]; };