UNPKG

287 BTypeScriptView Raw
1/**
2 * Interface for mutable types supporting internal cleanup (e.g.
3 * removing all values in a container etc.).
4 *
5 * @remarks
6 * Also see {@link IEmpty} and {@link IRelease} for related operations.
7 */
8export interface IClear {
9 clear(): void;
10}
11//# sourceMappingURL=clear.d.ts.map
\No newline at end of file