bc-minecraft-bedrock-project
Version:
The typescript library responsible for reading/parsing minecraft bedrock data
35 lines (34 loc) • 672 B
TypeScript
import { SMap } from "../../types";
import { FormatVersion } from "../types/format-version";
/** */
export interface Particle extends Readonly<FormatVersion> {
/** */
format_version: string;
/** */
particle_effect: ParticleContainer;
}
/** */
export interface ParticleContainer {
/** */
description: ParticleDescription;
/** */
components: SMap<any>;
events?: SMap<any>;
curves?: SMap<any>;
}
/** */
export interface ParticleDescription {
/** */
identifier: string;
}
/**
*
*/
export declare namespace Particle {
/**
*
* @param value
* @returns
*/
function is(value: any): value is Particle;
}