1.0.5 • Published 6 months ago
npm-package-type v1.0.5
npm-package-types
A TypeScript package providing type definitions for job-related data structures.
Installation
npm install npm-package-type
Available Types
The package exports the following TypeScript interfaces:
IJobTotalRate
- Rate information including value and currencyIAddress
- Detailed address structureISkills
- Basic skills informationDresscodeId
- Dresscode information with rankingIHourlyRateInMoney
- Hourly rate with currency informationISkill
- Detailed skill information with ratingsIJob
- Comprehensive job informationILabel
- Label/tag informationIClaimableRateInMoney
- Claimable rate informationIContractor
- Detailed contractor informationISkillsRating
- Skills rating structure
Usage
import { IJob, IContractor, ISkillsRating } from 'npm-package-type';
// Example using IJob interface
const job: IJob = {
id: "123",
title: "Software Developer",
status: "active",
// ... other required properties
};
CommonJS Usage
const { IJob } = require('npm-package-type');
License
MIT