@grpc/grpc-js
Version:
gRPC Library for Node - pure JS implementation
19 lines (18 loc) • 445 B
TypeScript
/**
* BoolRules describes the constraints applied to `bool` values
*/
export interface BoolRules {
/**
* Const specifies that this field must be exactly the specified value
*/
'const'?: (boolean);
}
/**
* BoolRules describes the constraints applied to `bool` values
*/
export interface BoolRules__Output {
/**
* Const specifies that this field must be exactly the specified value
*/
'const': (boolean);
}