idea-toolbox
Version:
IDEA's utility functions
13 lines (12 loc) • 346 B
TypeScript
import { Resource } from './resource.model';
export declare class Announcement extends Resource {
/**
* The content of the announcement.
*/
content: string;
/**
* Whether it's a maintenance announcement; if so, the use of the service is temporarily blocked.
*/
maintenance?: boolean;
load(x: any): void;
}