sb-element
Version:
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 12.0.1. It is a component library constructed around the SCSS library [Sb-Theming](https://github.com/SeverinBuchser/SbTheming) and supports [Angular Schematics]
15 lines (14 loc) • 422 B
TypeScript
export declare class ListItem<T> {
value: T;
next?: ListItem<T>;
previous?: ListItem<T>;
constructor(value: T);
insertNext(next: ListItem<T>): ListItem<T>;
insertNext(value: T): ListItem<T>;
insertPrevious(previous: ListItem<T>): ListItem<T>;
insertPrevious(value: T): ListItem<T>;
private static toItem;
}
export declare class NullListItem extends ListItem<any> {
constructor();
}