include node_modules so release .zip is deployable
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
/**
|
||||
* @packageDocumentation
|
||||
* @module std.internal
|
||||
*/
|
||||
export interface IPushFront<T> {
|
||||
/**
|
||||
* Insert an element at the first.
|
||||
*
|
||||
* @param val Value to insert.
|
||||
*/
|
||||
push_front(val: T): void;
|
||||
}
|
||||
Reference in New Issue
Block a user