Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/fourtyone11/origin-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'assets/node_modules/@types/node/punycode.d.ts')
-rw-r--r--assets/node_modules/@types/node/punycode.d.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/assets/node_modules/@types/node/punycode.d.ts b/assets/node_modules/@types/node/punycode.d.ts
new file mode 100644
index 0000000..75d2811
--- /dev/null
+++ b/assets/node_modules/@types/node/punycode.d.ts
@@ -0,0 +1,12 @@
+declare module "punycode" {
+ function decode(string: string): string;
+ function encode(string: string): string;
+ function toUnicode(domain: string): string;
+ function toASCII(domain: string): string;
+ const ucs2: ucs2;
+ interface ucs2 {
+ decode(string: string): number[];
+ encode(codePoints: number[]): string;
+ }
+ const version: string;
+}