blob: b5629a37be67d733ad72139de47a4ac619abbc11 (
plain)
1
2
3
4
5
6
7
|
import { interfaces } from "../interfaces/interfaces";
declare class ContainerSnapshot implements interfaces.ContainerSnapshot {
bindings: interfaces.Lookup<interfaces.Binding<any>>;
middleware: interfaces.Next | null;
static of(bindings: interfaces.Lookup<interfaces.Binding<any>>, middleware: interfaces.Next | null): ContainerSnapshot;
}
export { ContainerSnapshot };
|