mirror of
https://github.com/Kaelio/ktx.git
synced 2026-06-25 08:48:08 +02:00
8 lines
245 B
TypeScript
8 lines
245 B
TypeScript
export interface SlValidationResult {
|
|
errors: string[];
|
|
warnings: string[];
|
|
}
|
|
|
|
export interface SlValidatorPort<TDeps = unknown> {
|
|
validateSingleSource(deps: TDeps, connectionId: string, sourceName: string): Promise<SlValidationResult>;
|
|
}
|