@carsayo/types 1.1.879 → 1.1.880

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,4 @@
1
+ /** DTO는 서버단에 요청을 보낼 때 사용하는 클래스 유형으로 서버단에서 이 곳에 정의된 대로 유효성 검사를 처리합니다. */
2
+ export declare class GetHolidayDTO {
3
+ year: number;
4
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ /** DTO는 서버단에 요청을 보낼 때 사용하는 클래스 유형으로 서버단에서 이 곳에 정의된 대로 유효성 검사를 처리합니다. */
3
+ Object.defineProperty(exports, "__esModule", { value: true });
4
+ exports.GetHolidayDTO = void 0;
5
+ class GetHolidayDTO {
6
+ }
7
+ exports.GetHolidayDTO = GetHolidayDTO;
@@ -0,0 +1,2 @@
1
+ export * from "./dto";
2
+ export * from "./interface";
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ __exportStar(require("./dto"), exports);
18
+ __exportStar(require("./interface"), exports);
@@ -0,0 +1,6 @@
1
+ export interface Holiday {
2
+ year: number;
3
+ month: number;
4
+ locdate: string;
5
+ dateName: string;
6
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -19,3 +19,4 @@ export * from "./insurance";
19
19
  export * from "./accidentRegistration";
20
20
  export * from "./partners";
21
21
  export * from "./accidentReport";
22
+ export * from "./data";
@@ -35,3 +35,4 @@ __exportStar(require("./insurance"), exports);
35
35
  __exportStar(require("./accidentRegistration"), exports);
36
36
  __exportStar(require("./partners"), exports);
37
37
  __exportStar(require("./accidentReport"), exports);
38
+ __exportStar(require("./data"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@carsayo/types",
3
- "version": "1.1.879",
3
+ "version": "1.1.880",
4
4
  "description": "Carsayo app type",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",