Browse Source

refactor: delete unused interface constant

pull/6537/head
Arman Ozak 6 years ago
parent
commit
721ce34588
  1. 21
      npm/ng-packs/packages/schematics/src/constants/volo.ts

21
npm/ng-packs/packages/schematics/src/constants/volo.ts

@ -1,22 +1 @@
import { Interface, Property } from '../models';
export const VOLO_REGEX = /^Volo\.Abp\.(Application\.Dtos|ObjectExtending)/;
export const VOLO_NAME_VALUE = new Interface({
base: null,
identifier: 'NameValue<T = string>',
ref: 'Volo.Abp.NameValue',
namespace: 'Volo.Abp',
properties: [
new Property({
name: 'name',
type: 'string',
refs: ['System.String'],
}),
new Property({
name: 'value',
type: 'T',
refs: ['T'],
}),
],
});

Loading…
Cancel
Save