ui
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
/// <reference types="node" />
|
||||
declare type KeyValue = {
|
||||
[key: string]: any;
|
||||
};
|
||||
export declare class DnsTxt {
|
||||
private binary;
|
||||
constructor(opts?: KeyValue);
|
||||
encode(data?: KeyValue): Buffer[];
|
||||
decode(buffer: Buffer): KeyValue;
|
||||
decodeAll(buffer: Array<Buffer>): KeyValue;
|
||||
}
|
||||
export default DnsTxt;
|
||||
Reference in New Issue
Block a user