1/** 2 * Copyright (c) 2021 Gitpod GmbH. All rights reserved. 3 * Licensed under the GNU Affero General Public License (AGPL). 4 * See License.AGPL.txt in the project root for license information. 5 */ 6 7// Source: https://github.com/marteinn/The-Big-Username-Blacklist-JS/blob/master/src/index.js 8declare module "the-big-username-blacklist" { 9 export function validate(username: string): boolean; 10 export const list: string[]; 11} 12 13