mirror of
https://gitee.com/java110/WechatOwnerService.git
synced 2026-02-24 05:46:04 +08:00
11 lines
212 B
JavaScript
11 lines
212 B
JavaScript
export default class WebGLActiveInfo {
|
|
className = 'WebGLActiveInfo';
|
|
|
|
constructor({
|
|
type, name, size
|
|
}) {
|
|
this.type = type;
|
|
this.name = name;
|
|
this.size = size;
|
|
}
|
|
} |