interface String {
    includes(str: string, pos?: number): boolean;
    startsWith(str: string): boolean;
    endsWith(str: string): boolean;
}