UNPKG

811 BTypeScriptView Raw
1import { ICreateTsIndexOption } from '../options/ICreateTsIndexOption';
2export declare function addDot(ext: string): string;
3export declare function addNewline(option: ICreateTsIndexOption, data: string): string;
4export declare function isFalsy(value: boolean): boolean;
5export declare function isNotEmpty<T>(value?: T | undefined | null): value is T;
6export declare function isEmpty<T>(value?: T | undefined | null): value is T;
7export declare function parseBool(value?: unknown | undefined | null): boolean;
8export declare function getQuote(value: string): string;
9declare const _default: {
10 addDot: typeof addDot;
11 addNewline: typeof addNewline;
12 getQuote: typeof getQuote;
13 isEmpty: typeof isEmpty;
14 isNotEmpty: typeof isNotEmpty;
15 parseBool: typeof parseBool;
16};
17export default _default;