1.0.1 • Published 2 years ago

@alplagnard/release-tests v1.0.1

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

Intro

This package is only used to test typescript npm package release.

Usage

To test, run the following code:

import { Identity, PersonDetails, PersonStatus } from '@al/release-test'

const requester = 'StudentA';
const user = new Identity(requester);

const newStudent: PersonDetails = {
    id: '2',
    age: 20,
    status: PersonStatus.STUDENT
};

console.log(user.getProfessorId());
console.log(newStudent);
1.0.1

2 years ago