Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
gitpod-io
GitHub Repository: gitpod-io/gitpod
Path: blob/main/components/gitpod-db/src/the-big-username-blocklist.d.ts
2497 views
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
8
declare module "the-big-username-blacklist" {
9
export function validate(username: string): boolean;
10
export const list: string[];
11
}
12
13