UNPKG

bc-minecraft-bedrock-types

Version:

The typescript library that provides default types for minecraft bedrock

11 lines (10 loc) 321 B
import { Documentated } from './documentated'; import { Identifiable } from './identifiable'; import { Locatable } from './locatable'; /** */ export interface BaseObject extends Identifiable, Documentated, Locatable { } export declare namespace BaseObject { /** */ function is(value: any): value is BaseObject; }