bc-minecraft-bedrock-types
Version:
The typescript library that provides default types for minecraft bedrock
21 lines (20 loc) • 449 B
TypeScript
import { Location } from "./location";
/**An object that carries a location*/
export interface Locatable {
/**The location of the object in memory*/
location: Location;
}
/** */
export declare namespace Locatable {
/**TODO add documentation
*
* @param value
* @returns
*/
function is(value: any): value is Locatable;
/**TODO add documentation
*
* @returns
*/
function empty(): Locatable;
}