UNPKG

@nephele/authenticator-custom

Version:

Custom logic authenticator for the Nephele WebDAV server.

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