Home

js-spectre @main - refs - log -
-
https://git.jolheiser.com/js-spectre.git
JS implementation for spectre/masterpassword
js-spectre / lib / spectre.d.ts
- raw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
export * from './template.js';
export * from './scope.js';
import { Scope, Scoper } from "./scope.js";
import { Template } from "./template.js";
export declare class Spectre {
    private readonly name;
    private readonly secret;
    private readonly scoper;
    private readonly key;
    constructor(name: string, secret: string, scoper?: Scoper);
    private userKey;
    private siteKey;
    site(siteName: string, templateType?: Template, counter?: number, scope?: Scope): string;
}