11 lines
173 B
TypeScript
11 lines
173 B
TypeScript
/**
|
|
* @packageDocumentation
|
|
* @module std.internal
|
|
*/
|
|
export interface IEmpty {
|
|
/**
|
|
* Test whether container is empty.
|
|
*/
|
|
empty(): boolean;
|
|
}
|