mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-21 17:12:43 +00:00
feat: improve monorepo dev experience
This commit is contained in:
@@ -15,25 +15,28 @@
|
||||
import {ThingType} from './types';
|
||||
import {MapAggTestOptions} from '../../map-agg-test-options';
|
||||
|
||||
/** @integer */
|
||||
export type Integer = number;
|
||||
|
||||
/**
|
||||
* @indexable
|
||||
*/
|
||||
export interface InheritedProperty extends Bar {
|
||||
foo: number;
|
||||
/** @filterable */
|
||||
foo: Integer;
|
||||
|
||||
type: ThingType.InheritedProperty;
|
||||
// type: ThingType.InheritedProperty;
|
||||
}
|
||||
|
||||
interface Bar {
|
||||
/**
|
||||
* @keyword
|
||||
*/
|
||||
bar: string;
|
||||
|
||||
//bar: string;
|
||||
/**
|
||||
* @float
|
||||
*/
|
||||
baz: number;
|
||||
// baz: number;
|
||||
}
|
||||
|
||||
export const testConfig: MapAggTestOptions = {
|
||||
|
||||
Reference in New Issue
Block a user