@webilix/helper-library
Version:
JavaScript/TypeScript programming helper library.
12 lines • 504 B
TypeScript
declare function getPlate(plate: string[]): (string | null)[];
declare function getPlate(plate: string): (string | null)[];
declare function getPlate(plate: string, join: string): (string | null)[];
declare function toString(plate: string[]): string | null;
declare function toString(plate: string[], join: string): string | null;
export declare const PLATE: {
readonly letters: string[];
getPlate: typeof getPlate;
toString: typeof toString;
};
export {};
//# sourceMappingURL=plate.d.ts.map