DefinitelyTyped/types/saslprep/index.d.ts
2018-12-31 08:22:39 -08:00

15 lines
430 B
TypeScript

// Type definitions for saslprep 1.0
// Project: https://github.com/reklatsmasters/saslprep#readme
// Definitions by: BendingBender <https://github.com/BendingBender>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
export = saslPrep;
declare function saslPrep(input: string, options?: saslPrep.Options): string;
declare namespace saslPrep {
interface Options {
allowUnassigned?: boolean;
}
}