tex2typst
Version:
JavaScript library for converting TeX code to Typst
9 lines (8 loc) • 417 B
TypeScript
interface IEquatable {
eq(other: IEquatable): boolean;
}
export declare function array_find<T extends IEquatable>(array: T[], item: T, start?: number): number;
export declare function array_includes<T extends IEquatable>(array: T[], item: T): boolean;
export declare function array_split<T extends IEquatable>(array: T[], sep: T): T[][];
export declare function array_join<T>(array: T[], sep: T): T[];
export {};