UNPKG

@nephele/authenticator-none

Version:

Unrestricted authenticator for the Nephele WebDAV server.

10 lines (7 loc) 217 B
import type { User as UserInterface } from 'nephele'; export default class User implements UserInterface { username: string; constructor({ username }: { username: string }) { this.username = username; } }