mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-07-01 15:50:13 +00:00
Added Suggested Changes
This commit is contained in:
4
types/react-native-uuid/index.d.ts
vendored
4
types/react-native-uuid/index.d.ts
vendored
@@ -16,7 +16,7 @@ interface v4 {
|
||||
rng?: (...args: any) => void;
|
||||
}
|
||||
|
||||
export interface uuid {
|
||||
interface uuid {
|
||||
v1: (options?: v1, buffer?: ArrayBuffer, offset?: number) => string;
|
||||
v4: (options?: v4, buffer?: ArrayBuffer, offset?: number) => string;
|
||||
parse: (id: string, buffer?: ArrayBuffer, offset?: number) => ArrayBuffer;
|
||||
@@ -25,4 +25,4 @@ export interface uuid {
|
||||
}
|
||||
|
||||
declare const uuid: uuid;
|
||||
export default uuid;
|
||||
export = uuid;
|
||||
|
||||
@@ -4,6 +4,7 @@
|
||||
"lib": [
|
||||
"es6"
|
||||
],
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"noImplicitAny": true,
|
||||
"noImplicitThis": true,
|
||||
"strictNullChecks": true,
|
||||
|
||||
Reference in New Issue
Block a user