/** * This interface describes a handle to a flag. Instances are created by calling FlagProvider.create(). */ export interface Flag { /** * The flag's identifier. */ id: string; /** * This method closes this flag. */ close(): void; }