@thestarweb/trove-lang-tool
Version:
Just a tool for language files of trove.
16 lines (15 loc) • 379 B
TypeScript
/**
* by star_ss
* package: @thestarweb//trove-lang-tool
*/
export interface LangInfoItem {
key: string;
value: string;
}
export declare function read(data: Uint8Array): LangInfoItem[];
export declare function write(data: LangInfoItem[]): Uint8Array;
declare const _default: {
read: typeof read;
write: typeof write;
};
export default _default;