UNPKG

@nephele/authenticator-custom

Version:

Custom logic authenticator for the Nephele WebDAV server.

11 lines (8 loc) 237 B
import type { User as UserInterface } from 'nephele'; export default class User implements UserInterface { username: string; [k: string]: any; constructor({ username }: { username: string }) { this.username = username; } }