11 lines
174 B
TypeScript
11 lines
174 B
TypeScript
/**
|
|
* @packageDocumentation
|
|
* @module std.internal
|
|
*/
|
|
export interface ISize {
|
|
/**
|
|
* Number of elements in the container.
|
|
*/
|
|
size(): number;
|
|
}
|