mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-02-02 22:59:06 +08:00
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;
|