Files
Signal-Desktop/ts/types/Util.ts
2018-05-23 16:26:47 -07:00

9 lines
179 B
TypeScript

export type RenderTextCallback = (
options: {
text: string;
key: number;
}
) => JSX.Element;
export type Localizer = (key: string, values?: Array<string>) => string;