create-expo-cljs-app
Version:
Create a react native application with Expo and Shadow-CLJS!
19 lines • 482 B
TypeScript
import { Dayjs } from 'dayjs';
export declare type Platform = 'ios' | 'android';
export declare type Entry = {
date: Dayjs;
pid: number;
priority: number;
tag?: string;
appId?: string;
messages: string[];
platform: Platform;
};
export interface IParser {
splitMessages(data: string): string[];
parseMessages(messages: string[]): Entry[];
}
export interface IFilter {
shouldInclude(entry: Entry): boolean;
}
//# sourceMappingURL=types.d.ts.map