UNPKG

@types/three

Version:
18 lines (17 loc) 331 B
/** * Abstract class for representing pipelines. * * @private * @abstract */ declare class Pipeline { cacheKey: string; usedTimes: number; /** * Constructs a new pipeline. * * @param {string} cacheKey - The pipeline's cache key. */ constructor(cacheKey: string); } export default Pipeline;