@luma.gl/core
Version:
The luma.gl core Device API
19 lines • 512 B
JavaScript
// luma.gl
// SPDX-License-Identifier: MIT
// Copyright (c) vis.gl contributors
import { Resource } from "./resource.js";
/** Immutable QuerySet object */
export class QuerySet extends Resource {
get [Symbol.toStringTag]() {
return 'QuerySet';
}
constructor(device, props) {
super(device, props, QuerySet.defaultProps);
}
static defaultProps = {
...Resource.defaultProps,
type: undefined,
count: undefined
};
}
//# sourceMappingURL=query-set.js.map