mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-08 06:53:57 -07:00
7abb3a409d
Cloud runner develop - latest fixes (#524)
11 lines
301 B
TypeScript
11 lines
301 B
TypeScript
import Input from '../../input';
|
|
import CloudRunnerOptions from './cloud-runner-options';
|
|
|
|
class CloudRunnerOptionsReader {
|
|
static GetProperties() {
|
|
return [...Object.getOwnPropertyNames(Input), ...Object.getOwnPropertyNames(CloudRunnerOptions)];
|
|
}
|
|
}
|
|
|
|
export default CloudRunnerOptionsReader;
|