Skip to content

Commit 3dc6d1e

Browse files
committed
Fix syntax error in index.d.ts
1 parent 559eee7 commit 3dc6d1e

1 file changed

Lines changed: 7 additions & 6 deletions

File tree

riddlLib/js/types/index.d.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,13 @@ export interface AggregationAST {
387387
readonly __brand: 'RiddlAggregation';
388388
}
389389

390+
/**
391+
* Opaque handle to an IncrementalValidator.
392+
* Created by `createIncrementalValidator()`.
393+
*/
394+
// eslint-disable-next-line @typescript-eslint/no-empty-interface
395+
interface IncrementalValidator { readonly __brand: unique symbol }
396+
390397
/**
391398
* Main API object for RIDDL parsing functionality.
392399
*
@@ -609,12 +616,6 @@ export declare const RiddlAPI: {
609616
noANSIMessages?: boolean
610617
): ValidationResult;
611618

612-
/**
613-
* Opaque handle to an IncrementalValidator.
614-
* Created by `createIncrementalValidator()`.
615-
*/
616-
// eslint-disable-next-line @typescript-eslint/no-empty-interface
617-
interface IncrementalValidator { readonly __brand: unique symbol }
618619

619620
/**
620621
* Create an IncrementalValidator for efficient repeated

0 commit comments

Comments
 (0)