declare global { interface String { rjust(width: number, fillChar?: string): string; } } declare function rjust(str: string, width: number, fillChar?: string): string; export { rjust };