UNPKG

452 BTypeScriptView Raw
1/// <reference types="node" />
2import ICleaner from "./ICleaner";
3import IDataStore from "./IDataStore";
4/**
5 * Account properties.
6 *
7 * @interface IAccountProperties
8 */
9export interface IAccountProperties {
10 name: string;
11 key1: Buffer;
12 key2?: Buffer;
13}
14export default interface IAccountDataStore extends IDataStore, ICleaner {
15 getAccount(name: string): IAccountProperties | undefined;
16}
17//# sourceMappingURL=IAccountDataStore.d.ts.map
\No newline at end of file