/** * Interface to help Typescript determine what is allowed within the model options */ export interface IModelOptions { /** * If the model should use autoIndexing */ autoIndex?: boolean; /** * If the model should use buffering commands */ bufferCommands?: boolean; }