mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-22 08:42:51 +00:00
15 lines
430 B
TypeScript
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;
|
|
}
|
|
}
|