thomaswilson-sveltekit/src/lib/Authenticator.ts

3 lines
76 B
TypeScript
Raw Normal View History

export interface Authenticator {
authenticate(password: string): boolean;
}