🚀 Socket Launch Week Day 5:Introducing Repository Access Permissions and Custom Roles.Learn more
Sign In

@types/saslprep

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@types/saslprep - npm Package Compare versions

Comparing version
1.0.0
to
1.0.1
+1
-1
saslprep/index.d.ts

@@ -12,4 +12,4 @@ // Type definitions for saslprep 1.0

interface Options {
allowUnassigned?: boolean;
allowUnassigned?: boolean | undefined;
}
}
MIT License
Copyright (c) Microsoft Corporation. All rights reserved.
Copyright (c) Microsoft Corporation.

@@ -5,0 +5,0 @@ Permission is hereby granted, free of charge, to any person obtaining a copy

{
"name": "@types/saslprep",
"version": "1.0.0",
"version": "1.0.1",
"description": "TypeScript definitions for saslprep",
"homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/saslprep",
"license": "MIT",

@@ -14,11 +15,12 @@ "contributors": [

"main": "",
"types": "index",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git"
"url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git",
"directory": "types/saslprep"
},
"scripts": {},
"dependencies": {},
"typesPublisherContentHash": "7d5b3b636eecdfd416803a3371ea4c067f83fe56d2f7f8d1b52055d5edb976da",
"typeScriptVersion": "2.0"
"typesPublisherContentHash": "c4a4a3e7c2a162cb7b1acc7cf8d9ee617eee04ca17d1347d9c2ef1531b846b72",
"typeScriptVersion": "3.6"
}

@@ -8,6 +8,24 @@ # Installation

# Details
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/saslprep
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/saslprep.
## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/saslprep/index.d.ts)
````ts
// 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
Additional Details
* Last updated: Mon, 31 Dec 2018 16:26:30 GMT
export = saslPrep;
declare function saslPrep(input: string, options?: saslPrep.Options): string;
declare namespace saslPrep {
interface Options {
allowUnassigned?: boolean | undefined;
}
}
````
### Additional Details
* Last updated: Tue, 06 Jul 2021 16:34:15 GMT
* Dependencies: none

@@ -17,2 +35,2 @@ * Global values: none

# Credits
These definitions were written by BendingBender <https://github.com/BendingBender>.
These definitions were written by [BendingBender](https://github.com/BendingBender).