urltomarkdown/node_modules/justify-text/index.d.ts

5 lines
198 B
TypeScript
Raw Normal View History

2022-02-04 11:51:31 +00:00
declare module "justify-text" {
export function ljust(input: string | number, width: number, padding?: string);
export function rjust(input: string | number, width: number, padding?: string);
}