Compare commits

...

2 Commits

Author SHA1 Message Date
f55ac65e20 1.0.12 2017-06-11 20:57:32 +02:00
474ce92b88 update structure 2017-06-11 20:57:30 +02:00
5 changed files with 8 additions and 4 deletions

1
dist/cloud/dns.d.ts vendored
View File

@ -0,0 +1 @@
export declare type TDnsRecord = 'A' | 'AAAA' | 'CNAME' | 'TXT' | 'SRV' | 'LOC' | 'MX' | 'NS' | 'SPF';

2
dist/cloud/dns.js vendored
View File

@ -1 +1,3 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZG5zLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vdHMvY2xvdWQvZG5zLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiIifQ==

5
dist/index.d.ts vendored
View File

@ -1,6 +1,7 @@
export * from './business/company';
export * from './business/invoice';
export * from './cloud/dns';
export * from './content/article';
export * from './content/author';
export * from './business/company';
export * from './general/date';
export * from './business/invoice';
export * from './general/time';

View File

@ -1,6 +1,6 @@
{
"name": "tsclass",
"version": "1.0.11",
"version": "1.0.12",
"description": "common classes for TypeScript",
"main": "dist/index.js",
"typings": "dist/index.d.ts",

View File

@ -1 +1 @@
export type TRecord = 'A' | 'AAAA' | 'CNAME' | 'TXT' | 'SRV' | 'LOC' | 'MX' | 'NS' | 'SPF'
export type TDnsRecord = 'A' | 'AAAA' | 'CNAME' | 'TXT' | 'SRV' | 'LOC' | 'MX' | 'NS' | 'SPF'