@types/imap
Advanced tools
Comparing version 0.8.37 to 0.8.38
@@ -7,7 +7,6 @@ // Type definitions for imap v0.8.14 | ||
/// <reference types="node" /> | ||
import { EventEmitter } from 'events'; | ||
import { ConnectionOptions } from 'tls'; | ||
import { EventEmitter } from "events"; | ||
import { ConnectionOptions } from "tls"; | ||
declare namespace Connection { | ||
// The property names of these interfaces match the documentation (where type names were given). | ||
@@ -39,3 +38,3 @@ | ||
/** Configures the keepalive mechanism. Set to true to enable keepalive with defaults or set to object to enable and configure keepalive behavior: Default: true */ | ||
keepalive?: any; /* boolean|KeepAlive */ | ||
keepalive?: any; /* boolean|KeepAlive */ | ||
/** If set, the function will be called with one argument, a string containing some debug info Default: (no debug output) */ | ||
@@ -61,3 +60,2 @@ debug?: Function | undefined; | ||
export interface Box { | ||
@@ -116,5 +114,5 @@ /** The name of this mailbox. */ | ||
on(event: string, listener: Function): this; | ||
on(event: 'body', listener: (stream: NodeJS.ReadableStream, info: ImapMessageBodyInfo) => void): this; | ||
on(event: 'attributes', listener: (attrs: ImapMessageAttributes) => void): this; | ||
on(event: 'end', listener: () => void): this; | ||
on(event: "body", listener: (stream: NodeJS.ReadableStream, info: ImapMessageBodyInfo) => void): this; | ||
on(event: "attributes", listener: (attrs: ImapMessageAttributes) => void): this; | ||
on(event: "end", listener: () => void): this; | ||
} | ||
@@ -137,13 +135,11 @@ | ||
/** Returned from fetch() */ | ||
export interface ImapFetch extends NodeJS.EventEmitter { | ||
on(event: string, listener: Function): this; | ||
on(event: 'message', listener: (message: ImapMessage, seqno: number) => void): this; | ||
on(event: 'error', listener: (error: Error) => void): this; | ||
on(event: "message", listener: (message: ImapMessage, seqno: number) => void): this; | ||
on(event: "error", listener: (error: Error) => void): this; | ||
once(event: string, listener: Function): this; | ||
once(event: 'error', listener: (error: Error) => void): this; | ||
once(event: "error", listener: (error: Error) => void): this; | ||
} | ||
export interface Folder { | ||
@@ -160,3 +156,2 @@ /** mailbox attributes. An attribute of 'NOSELECT' indicates the mailbox cannot be opened */ | ||
export interface MailBoxes { | ||
@@ -166,3 +161,2 @@ [name: string]: Folder; | ||
export interface AppendOptions { | ||
@@ -172,3 +166,3 @@ /** The name of the mailbox to append the message to. Default: the currently open mailbox */ | ||
/** A single flag (e.g. 'Seen') or an array of flags (e.g. ['Seen', 'Flagged']) to append to the message. Default: (no flags) */ | ||
flags?: any; /* string|string[] */ | ||
flags?: any; /* string|string[] */ | ||
/** What to use for message arrival date/time. Default: (current date/time) */ | ||
@@ -178,3 +172,17 @@ date?: Date | undefined; | ||
export type SortCriteria = 'ARRIVAL' | '-ARRIVAL' | 'CC' | '-CC' | 'DATE' | '-DATE' | 'FROM' | '-FROM' | 'SIZE' | '-SIZE' | 'SUBJECT' | '-SUBJECT' | 'TO' | '-TO'; | ||
export type SortCriteria = | ||
| "ARRIVAL" | ||
| "-ARRIVAL" | ||
| "CC" | ||
| "-CC" | ||
| "DATE" | ||
| "-DATE" | ||
| "FROM" | ||
| "-FROM" | ||
| "SIZE" | ||
| "-SIZE" | ||
| "SUBJECT" | ||
| "-SUBJECT" | ||
| "TO" | ||
| "-TO"; | ||
@@ -233,128 +241,171 @@ export interface MessageFunctions { | ||
/** Sorts the currently open mailbox for messages using given sortCriteria. This method first searches the mailbox for messages that match the given searching criteria and then sorts by given sort criteria. (This is a specification of RFC 5256. ) */ | ||
sort(sortCriteria: SortCriteria[], searchCriteria: any[], callback: (error: Error, uids: number[]) => void): void; | ||
sort( | ||
sortCriteria: SortCriteria[], | ||
searchCriteria: any[], | ||
callback: (error: Error, uids: number[]) => void, | ||
): void; | ||
/** Fetches message(s) in the currently open mailbox; source can be a single message identifier, a message identifier range (e.g. '2504:2507' or '*' or '2504:*'), an array of message identifiers, or an array of message identifier ranges. */ | ||
fetch(source: any /* MessageSource */, options: FetchOptions): ImapFetch; | ||
fetch(source: any, /* MessageSource */ options: FetchOptions): ImapFetch; | ||
/** Copies message(s) in the currently open mailbox to another mailbox. */ | ||
copy(source: any /* MessageSource */, mailboxName: string, callback: (error: Error) => void): void; | ||
copy(source: any, /* MessageSource */ mailboxName: string, callback: (error: Error) => void): void; | ||
/** Moves message(s) in the currently open mailbox to another mailbox. Note: The message(s) in the destination mailbox will have a new message UID. */ | ||
move(source: any /* MessageSource */, mailboxName: string, callback: (error: Error) => void): void; | ||
move(source: any, /* MessageSource */ mailboxName: string, callback: (error: Error) => void): void; | ||
/** Adds flag(s) to message(s). */ | ||
addFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void; | ||
addFlags(source: any, /* MessageSource */ flags: any, callback: (error: Error) => void): void; | ||
/** Removes flag(s) from message(s). */ | ||
delFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void; | ||
delFlags(source: any, /* MessageSource */ flags: any, callback: (error: Error) => void): void; | ||
/** Sets the flag(s) for message(s). */ | ||
setFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void; | ||
setFlags(source: any, /* MessageSource */ flags: any, callback: (error: Error) => void): void; | ||
/** Adds keyword(s) to message(s). keywords is either a single keyword or an array of keywords. */ | ||
addKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void; | ||
addKeywords( | ||
source: any, /* MessageSource */ | ||
keywords: any, /* string|string[] */ | ||
callback: (error: Error) => void, | ||
): void; | ||
/** Removes keyword(s) from message(s). keywords is either a single keyword or an array of keywords. */ | ||
delKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void; | ||
delKeywords( | ||
source: any, /* MessageSource */ | ||
keywords: any, /* string|string[] */ | ||
callback: (error: Error) => void, | ||
): void; | ||
/** Sets keyword(s) for message(s). keywords is either a single keyword or an array of keywords. */ | ||
setKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void; | ||
setKeywords( | ||
source: any, /* MessageSource */ | ||
keywords: any, /* string|string[] */ | ||
callback: (error: Error) => void, | ||
): void; | ||
/** Checks if the server supports the specified capability. */ | ||
serverSupports(capability: string): boolean; | ||
} | ||
} | ||
declare class Connection extends EventEmitter implements Connection.MessageFunctions { | ||
constructor(config: Connection.Config); | ||
constructor(config: Connection.Config); | ||
// from NodeJS.EventEmitter | ||
addListener(event: string, listener: Function): this; | ||
on(event: string, listener: Function): this; | ||
once(event: string, listener: Function): this; | ||
removeListener(event: string, listener: Function): this; | ||
removeAllListeners(event?: string): this; | ||
setMaxListeners(n: number): this; | ||
getMaxListeners(): number; | ||
listeners(event: string): Function[]; | ||
emit(event: string, ...args: any[]): boolean; | ||
listenerCount(type: string): number; | ||
// from NodeJS.EventEmitter | ||
addListener(event: string, listener: Function): this; | ||
on(event: string, listener: Function): this; | ||
once(event: string, listener: Function): this; | ||
removeListener(event: string, listener: Function): this; | ||
removeAllListeners(event?: string): this; | ||
setMaxListeners(n: number): this; | ||
getMaxListeners(): number; | ||
listeners(event: string): Function[]; | ||
emit(event: string, ...args: any[]): boolean; | ||
listenerCount(type: string): number; | ||
// from MessageFunctions | ||
/** Searches the currently open mailbox for messages using given criteria. criteria is a list describing what you want to find. For criteria types that require arguments, use an array instead of just the string criteria type name (e.g. ['FROM', 'foo@bar.com']). Prefix criteria types with an "!" to negate. */ | ||
search(criteria: any[], callback: (error: Error, uids: number[]) => void): void; | ||
/** Sorts the currently open mailbox for messages using given sortCriteria. This method first searches the mailbox for messages that match the given searching criteria and then sorts by given sort criteria. (This is a specification of RFC 5256. ) */ | ||
sort(sortCriteria: Connection.SortCriteria[], searchCriteria: any[], callback: (error: Error, uids: number[]) => void): void; | ||
/** Fetches message(s) in the currently open mailbox. */ | ||
fetch(source: any /* MessageSource */, options: Connection.FetchOptions): Connection.ImapFetch; | ||
/** Copies message(s) in the currently open mailbox to another mailbox. */ | ||
copy(source: any /* MessageSource */, mailboxName: string, callback: (error: Error) => void): void; | ||
/** Moves message(s) in the currently open mailbox to another mailbox. Note: The message(s) in the destination mailbox will have a new message UID. */ | ||
move(source: any /* MessageSource */, mailboxName: string, callback: (error: Error) => void): void; | ||
/** Adds flag(s) to message(s). */ | ||
addFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void; | ||
/** Removes flag(s) from message(s). */ | ||
delFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void; | ||
/** Sets the flag(s) for message(s). */ | ||
setFlags(source: any /* MessageSource */, flags: any, callback: (error: Error) => void): void; | ||
/** Adds keyword(s) to message(s). keywords is either a single keyword or an array of keywords. */ | ||
addKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void; | ||
/** Removes keyword(s) from message(s). keywords is either a single keyword or an array of keywords. */ | ||
delKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void; | ||
/** Sets keyword(s) for message(s). keywords is either a single keyword or an array of keywords. */ | ||
setKeywords(source: any /* MessageSource */, keywords: any /* string|string[] */, callback: (error: Error) => void): void; | ||
/** Checks if the server supports the specified capability. */ | ||
serverSupports(capability: string): boolean; | ||
// from MessageFunctions | ||
/** Searches the currently open mailbox for messages using given criteria. criteria is a list describing what you want to find. For criteria types that require arguments, use an array instead of just the string criteria type name (e.g. ['FROM', 'foo@bar.com']). Prefix criteria types with an "!" to negate. */ | ||
search(criteria: any[], callback: (error: Error, uids: number[]) => void): void; | ||
/** Sorts the currently open mailbox for messages using given sortCriteria. This method first searches the mailbox for messages that match the given searching criteria and then sorts by given sort criteria. (This is a specification of RFC 5256. ) */ | ||
sort( | ||
sortCriteria: Connection.SortCriteria[], | ||
searchCriteria: any[], | ||
callback: (error: Error, uids: number[]) => void, | ||
): void; | ||
/** Fetches message(s) in the currently open mailbox. */ | ||
fetch(source: any, /* MessageSource */ options: Connection.FetchOptions): Connection.ImapFetch; | ||
/** Copies message(s) in the currently open mailbox to another mailbox. */ | ||
copy(source: any, /* MessageSource */ mailboxName: string, callback: (error: Error) => void): void; | ||
/** Moves message(s) in the currently open mailbox to another mailbox. Note: The message(s) in the destination mailbox will have a new message UID. */ | ||
move(source: any, /* MessageSource */ mailboxName: string, callback: (error: Error) => void): void; | ||
/** Adds flag(s) to message(s). */ | ||
addFlags(source: any, /* MessageSource */ flags: any, callback: (error: Error) => void): void; | ||
/** Removes flag(s) from message(s). */ | ||
delFlags(source: any, /* MessageSource */ flags: any, callback: (error: Error) => void): void; | ||
/** Sets the flag(s) for message(s). */ | ||
setFlags(source: any, /* MessageSource */ flags: any, callback: (error: Error) => void): void; | ||
/** Adds keyword(s) to message(s). keywords is either a single keyword or an array of keywords. */ | ||
addKeywords( | ||
source: any, /* MessageSource */ | ||
keywords: any, /* string|string[] */ | ||
callback: (error: Error) => void, | ||
): void; | ||
/** Removes keyword(s) from message(s). keywords is either a single keyword or an array of keywords. */ | ||
delKeywords( | ||
source: any, /* MessageSource */ | ||
keywords: any, /* string|string[] */ | ||
callback: (error: Error) => void, | ||
): void; | ||
/** Sets keyword(s) for message(s). keywords is either a single keyword or an array of keywords. */ | ||
setKeywords( | ||
source: any, /* MessageSource */ | ||
keywords: any, /* string|string[] */ | ||
callback: (error: Error) => void, | ||
): void; | ||
/** Checks if the server supports the specified capability. */ | ||
serverSupports(capability: string): boolean; | ||
/** Parses a raw header and returns an object keyed on header fields and the values are Arrays of header field values. Set disableAutoDecode to true to disable automatic decoding of MIME encoded-words that may exist in header field values. */ | ||
static parseHeader(rawHeader: string, disableAutoDecode?: boolean): {[index: string]: string[]}; | ||
/** Parses a raw header and returns an object keyed on header fields and the values are Arrays of header field values. Set disableAutoDecode to true to disable automatic decoding of MIME encoded-words that may exist in header field values. */ | ||
static parseHeader(rawHeader: string, disableAutoDecode?: boolean): { [index: string]: string[] }; | ||
/** The current state of the connection (e.g. 'disconnected', 'connected', 'authenticated'). */ | ||
state: string; | ||
/** The (top-level) mailbox hierarchy delimiter. If the server does not support mailbox hierarchies and only a flat list, this value will be falsey. */ | ||
delimiter: string; | ||
/** Contains information about each namespace type (if supported by the server) with the following properties: */ | ||
namespaces: { | ||
/** Mailboxes that belong to the logged in user. */ | ||
personal: any[]; | ||
/** Mailboxes that belong to other users that the logged in user has access to. */ | ||
other: any[]; | ||
/** Mailboxes that are accessible by any logged in user. */ | ||
shared: any[]; | ||
}; | ||
/** | ||
/** The current state of the connection (e.g. 'disconnected', 'connected', 'authenticated'). */ | ||
state: string; | ||
/** The (top-level) mailbox hierarchy delimiter. If the server does not support mailbox hierarchies and only a flat list, this value will be falsey. */ | ||
delimiter: string; | ||
/** Contains information about each namespace type (if supported by the server) with the following properties: */ | ||
namespaces: { | ||
/** Mailboxes that belong to the logged in user. */ | ||
personal: any[]; | ||
/** Mailboxes that belong to other users that the logged in user has access to. */ | ||
other: any[]; | ||
/** Mailboxes that are accessible by any logged in user. */ | ||
shared: any[]; | ||
}; | ||
/** | ||
seq exposes the search() ... serverSupports() set of commands, but returns sequence number(s) instead of UIDs. | ||
*/ | ||
seq: Connection.MessageFunctions; | ||
/** Attempts to connect and authenticate with the IMAP server. */ | ||
connect(): void; | ||
/** Closes the connection to the server after all requests in the queue have been sent. */ | ||
end(): void; | ||
/** Immediately destroys the connection to the server. */ | ||
destroy(): void; | ||
/** Opens a specific mailbox that exists on the server. mailboxName should include any necessary prefix/path. modifiers is used by IMAP extensions. */ | ||
openBox(mailboxName: string, callback: (error: Error, mailbox: Connection.Box) => void): void; | ||
openBox(mailboxName: string, openReadOnly: boolean, callback: (error: Error, mailbox: Connection.Box) => void): void; | ||
openBox(mailboxName: string, openReadOnly: boolean, modifiers: Object, callback: (error: Error, mailbox: Connection.Box) => void): void; | ||
/** Closes the currently open mailbox. If autoExpunge is true, any messages marked as Deleted in the currently open mailbox will be removed if the mailbox was NOT opened in read-only mode. If autoExpunge is false, you disconnect, or you open another mailbox, messages marked as Deleted will NOT be removed from the currently open mailbox. */ | ||
closeBox(callback: (error: Error) => void): void; | ||
closeBox(autoExpunge: boolean, callback: (error: Error) => void): void; | ||
/** Creates a new mailbox on the server. mailboxName should include any necessary prefix/path. */ | ||
addBox(mailboxName: string, callback: (error: Error) => void): void; | ||
/** Removes a specific mailbox that exists on the server. mailboxName should including any necessary prefix/path. */ | ||
delBox(mailboxName: string, callback: (error: Error) => void): void; | ||
/** Renames a specific mailbox that exists on the server. Both oldMailboxName and newMailboxName should include any necessary prefix/path. Note: Renaming the 'INBOX' mailbox will instead cause all messages in 'INBOX' to be moved to the new mailbox. */ | ||
renameBox(oldMailboxName: string, newMailboxName: string, callback: (error: Error, mailbox: Connection.Box) => void): void; | ||
/** Subscribes to a specific mailbox that exists on the server. mailboxName should include any necessary prefix/path. */ | ||
subscribeBox(mailboxName: string, callback: (error: Error) => void): void; | ||
/** Unsubscribes from a specific mailbox that exists on the server. mailboxName should include any necessary prefix/path. */ | ||
unsubscribeBox(mailboxName: string, callback: (error: Error) => void): void; | ||
/** Fetches information about a mailbox other than the one currently open. Note: There is no guarantee that this will be a fast operation on the server. Also, do not call this on the currently open mailbox. */ | ||
status(mailboxName: string, callback: (error: Error, mailbox: Connection.Box) => void): void; | ||
/** Obtains the full list of mailboxes. If nsPrefix is not specified, the main personal namespace is used. */ | ||
getBoxes(callback: (error: Error, mailboxes: Connection.MailBoxes) => void): void; | ||
getBoxes(nsPrefix: string, callback: (error: Error, mailboxes: Connection.MailBoxes) => void): void; | ||
/** Obtains the full list of subscribed mailboxes. If nsPrefix is not specified, the main personal namespace is used. */ | ||
getSubscribedBoxes(callback: (error: Error, mailboxes: Connection.MailBoxes) => void): void; | ||
getSubscribedBoxes(nsPrefix: string, callback: (error: Error, mailboxes: Connection.MailBoxes) => void): void; | ||
/** Permanently removes all messages flagged as Deleted in the currently open mailbox. If the server supports the 'UIDPLUS' capability, uids can be supplied to only remove messages that both have their uid in uids and have the \Deleted flag set. Note: At least on Gmail, performing this operation with any currently open mailbox that is not the Spam or Trash mailbox will merely archive any messages marked as Deleted (by moving them to the 'All Mail' mailbox). */ | ||
expunge(callback: (error: Error) => void): void; | ||
expunge(uids: any /* MessageSource */, callback: (error: Error) => void): void; | ||
/** Appends a message to selected mailbox. msgData is a string or Buffer containing an RFC-822 compatible MIME message. Valid options properties are: */ | ||
append(msgData: any, callback: (error: Error) => void): void; | ||
append(msgData: any, options: Connection.AppendOptions, callback: (error: Error) => void): void; | ||
seq: Connection.MessageFunctions; | ||
/** Attempts to connect and authenticate with the IMAP server. */ | ||
connect(): void; | ||
/** Closes the connection to the server after all requests in the queue have been sent. */ | ||
end(): void; | ||
/** Immediately destroys the connection to the server. */ | ||
destroy(): void; | ||
/** Opens a specific mailbox that exists on the server. mailboxName should include any necessary prefix/path. modifiers is used by IMAP extensions. */ | ||
openBox(mailboxName: string, callback: (error: Error, mailbox: Connection.Box) => void): void; | ||
openBox( | ||
mailboxName: string, | ||
openReadOnly: boolean, | ||
callback: (error: Error, mailbox: Connection.Box) => void, | ||
): void; | ||
openBox( | ||
mailboxName: string, | ||
openReadOnly: boolean, | ||
modifiers: Object, | ||
callback: (error: Error, mailbox: Connection.Box) => void, | ||
): void; | ||
/** Closes the currently open mailbox. If autoExpunge is true, any messages marked as Deleted in the currently open mailbox will be removed if the mailbox was NOT opened in read-only mode. If autoExpunge is false, you disconnect, or you open another mailbox, messages marked as Deleted will NOT be removed from the currently open mailbox. */ | ||
closeBox(callback: (error: Error) => void): void; | ||
closeBox(autoExpunge: boolean, callback: (error: Error) => void): void; | ||
/** Creates a new mailbox on the server. mailboxName should include any necessary prefix/path. */ | ||
addBox(mailboxName: string, callback: (error: Error) => void): void; | ||
/** Removes a specific mailbox that exists on the server. mailboxName should including any necessary prefix/path. */ | ||
delBox(mailboxName: string, callback: (error: Error) => void): void; | ||
/** Renames a specific mailbox that exists on the server. Both oldMailboxName and newMailboxName should include any necessary prefix/path. Note: Renaming the 'INBOX' mailbox will instead cause all messages in 'INBOX' to be moved to the new mailbox. */ | ||
renameBox( | ||
oldMailboxName: string, | ||
newMailboxName: string, | ||
callback: (error: Error, mailbox: Connection.Box) => void, | ||
): void; | ||
/** Subscribes to a specific mailbox that exists on the server. mailboxName should include any necessary prefix/path. */ | ||
subscribeBox(mailboxName: string, callback: (error: Error) => void): void; | ||
/** Unsubscribes from a specific mailbox that exists on the server. mailboxName should include any necessary prefix/path. */ | ||
unsubscribeBox(mailboxName: string, callback: (error: Error) => void): void; | ||
/** Fetches information about a mailbox other than the one currently open. Note: There is no guarantee that this will be a fast operation on the server. Also, do not call this on the currently open mailbox. */ | ||
status(mailboxName: string, callback: (error: Error, mailbox: Connection.Box) => void): void; | ||
/** Obtains the full list of mailboxes. If nsPrefix is not specified, the main personal namespace is used. */ | ||
getBoxes(callback: (error: Error, mailboxes: Connection.MailBoxes) => void): void; | ||
getBoxes(nsPrefix: string, callback: (error: Error, mailboxes: Connection.MailBoxes) => void): void; | ||
/** Obtains the full list of subscribed mailboxes. If nsPrefix is not specified, the main personal namespace is used. */ | ||
getSubscribedBoxes(callback: (error: Error, mailboxes: Connection.MailBoxes) => void): void; | ||
getSubscribedBoxes(nsPrefix: string, callback: (error: Error, mailboxes: Connection.MailBoxes) => void): void; | ||
/** Permanently removes all messages flagged as Deleted in the currently open mailbox. If the server supports the 'UIDPLUS' capability, uids can be supplied to only remove messages that both have their uid in uids and have the \Deleted flag set. Note: At least on Gmail, performing this operation with any currently open mailbox that is not the Spam or Trash mailbox will merely archive any messages marked as Deleted (by moving them to the 'All Mail' mailbox). */ | ||
expunge(callback: (error: Error) => void): void; | ||
expunge(uids: any, /* MessageSource */ callback: (error: Error) => void): void; | ||
/** Appends a message to selected mailbox. msgData is a string or Buffer containing an RFC-822 compatible MIME message. Valid options properties are: */ | ||
append(msgData: any, callback: (error: Error) => void): void; | ||
append(msgData: any, options: Connection.AppendOptions, callback: (error: Error) => void): void; | ||
} | ||
export = Connection; |
{ | ||
"name": "@types/imap", | ||
"version": "0.8.37", | ||
"version": "0.8.38", | ||
"description": "TypeScript definitions for imap", | ||
@@ -25,4 +25,4 @@ "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/imap", | ||
}, | ||
"typesPublisherContentHash": "c3f3bb58226c887454d32e3af831218951a2c62b1aff809b96812386b32c4a89", | ||
"typeScriptVersion": "4.3" | ||
"typesPublisherContentHash": "2f82e75b30b45840ff7fadbe38dc82fa58ec723973c0dd919bdfec85cfdb3799", | ||
"typeScriptVersion": "4.5" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
### Additional Details | ||
* Last updated: Wed, 17 May 2023 20:32:55 GMT | ||
* Last updated: Tue, 26 Sep 2023 14:36:22 GMT | ||
* Dependencies: [@types/node](https://npmjs.com/package/@types/node) | ||
@@ -14,0 +14,0 @@ * Global values: none |
27396
373