declare global { interface String { padStart: (maxLength: number, fillString?: string) => string; } } export {};