UNPKG

react-kiwi-dropdown

Version:

| Name | Type | Description | | --------------------------- | -------------------- | ----------- | | options | array | | selectedOption | string | | onCha

9 lines (8 loc) 377 B
import { CancellationToken } from './CancellationToken'; import { NormalizedMessage } from './NormalizedMessage'; export interface IncrementalCheckerInterface { nextIteration(): void; getDiagnostics(cancellationToken: CancellationToken): Promise<NormalizedMessage[]>; hasLinter(): boolean; getLints(cancellationToken: CancellationToken): NormalizedMessage[]; }