mirror of https://github.com/tc39/test262.git
15 lines
340 B
TypeScript
15 lines
340 B
TypeScript
|
declare function $ERROR(text: string): void;
|
||
|
|
||
|
// Proposal: regexp-match-indices
|
||
|
interface RegExpExecArray {
|
||
|
indices: RegExpIndicesArray;
|
||
|
}
|
||
|
|
||
|
interface RegExpMatchArray {
|
||
|
indices: RegExpIndicesArray;
|
||
|
}
|
||
|
|
||
|
interface RegExpIndicesArray extends Array<[number, number]> {
|
||
|
groups?: { [group: string]: [number, number] };
|
||
|
}
|