mirror of
https://github.com/gitpod-io/gitpod.git
synced 2025-12-08 17:36:30 +00:00
15 lines
471 B
TypeScript
15 lines
471 B
TypeScript
/**
|
|
* Copyright (c) 2021 Gitpod GmbH. All rights reserved.
|
|
* Licensed under the Gitpod Enterprise Source Code License,
|
|
* See License.enterprise.txt in the project root folder.
|
|
*/
|
|
|
|
import { EduEmailDomain } from "@gitpod/gitpod-protocol";
|
|
|
|
export const EduEmailDomainDB = Symbol("EduEmailDomainDB");
|
|
export interface EduEmailDomainDB {
|
|
storeDomainEntry(domain: EduEmailDomain): Promise<void>;
|
|
|
|
readEducationalInstitutionDomains(): Promise<EduEmailDomain[]>;
|
|
}
|