Files
Spencer Pincott 97737ca1ae Initial commit
2024-07-15 22:20:13 -04:00

7 lines
325 B
TypeScript

/// <reference types="node" />
export declare function bufFromString(str: string): Buffer;
export declare function emptyBuffer(): Buffer;
export declare function filterArray(arr: any[], filter: number[]): any[];
export declare const trimLeft: (str: string) => string;
export declare const trimRight: (str: string) => string;