You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
consul/ui/packages/consul-ui/app/services/state-with-charts.js

17 lines
386 B

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import StateService from 'consul-ui/services/state';
import validate from 'consul-ui/machines/validate.xstate';
import _boolean from 'consul-ui/machines/boolean.xstate';
export default class ChartedStateService extends StateService {
stateCharts = {
validate: validate,
boolean: _boolean,
};
}