mirror of
https://github.com/game-ci/unity-builder.git
synced 2026-06-08 06:53:57 -07:00
4cca069ebb
Release Candidate changeset 1 - For 1.0 Cloud Runner
11 lines
302 B
TypeScript
11 lines
302 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;
|