interface String {
    /**
     * Simple polyfill to simulate startsWith.
     *
     * @param suffix the suffix to inspect.
     */
    beginsWith(suffix: any): boolean;
}
