yarle-evernote-to-md
Version:
Yet Another Rope Ladder from Evernote
16 lines (15 loc) • 1.19 kB
TypeScript
import { ResourceFileProperties } from './../models/ResourceFileProperties';
import { EvernoteNoteData } from '../models';
export declare const normalizeFilenameString: (title: string) => string;
export declare const getFileIndex: (dstPath: string, fileNamePrefix: string) => number | string;
export declare const getResourceFileProperties: (workDir: string, resource: any) => ResourceFileProperties;
export declare const getFilePrefix: (note: EvernoteNoteData) => string;
export declare const getNoteFileName: (dstPath: string, note: EvernoteNoteData, extension?: string) => string;
export declare const getExtensionFromResourceFileName: (resource: any) => string;
export declare const getExtensionFromMime: (resource: any) => string;
export declare const getExtension: (resource: any) => string;
export declare const getZettelKastelId: (note: EvernoteNoteData, dstPath: string) => string;
export declare const getUniqueId: () => string;
export declare const getNoteName: (dstPath: string, note: EvernoteNoteData) => string;
export declare const getNotebookName: (enexFile: string) => string;
export declare const getClosestFileName: (text: string, allconvertedFiles: string[]) => string;