Compare commits
2 Commits
Author | SHA1 | Date | |
---|---|---|---|
96f525ef0b | |||
7eb2ce7fe3 |
2
package-lock.json
generated
2
package-lock.json
generated
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "1.0.34",
|
||||
"version": "1.0.35",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@tsclass/tsclass",
|
||||
"version": "1.0.34",
|
||||
"version": "1.0.35",
|
||||
"private": false,
|
||||
"description": "common classes for TypeScript",
|
||||
"main": "dist/index.js",
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { IContact } from '../index';
|
||||
import { IDate } from '../index';
|
||||
import { IContact } from '..';
|
||||
import { IDate } from '..';
|
||||
|
||||
/**
|
||||
* describes a company's lifecycle state
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { IAddress } from '../index';
|
||||
import { IAddress } from '..';
|
||||
|
||||
export type TContactSalutation = 'Mr' | 'Ms' | 'Mrs';
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
import { IAuthor } from '../index';
|
||||
import { IAuthor } from '..';
|
||||
|
||||
export interface IArticle {
|
||||
/**
|
||||
|
@ -1,5 +1,5 @@
|
||||
import { IDate } from '../index';
|
||||
import { IArticle } from '../index';
|
||||
import { IDate } from '..';
|
||||
import { IArticle } from '..';
|
||||
|
||||
export interface IAuthor {
|
||||
/**
|
||||
|
Reference in New Issue
Block a user