8 lines
111 B
TypeScript
8 lines
111 B
TypeScript
/**
|
|
* @packageDocumentation
|
|
* @module std
|
|
*/
|
|
export interface INegatable<Ret> {
|
|
negate(): Ret;
|
|
}
|