import { ISkFile } from "./file"; import { Audit, IAudit } from "./audit"; export declare enum SkPointType { Add = "ADD", Subtract = "SUBTRACT" } export interface ISkPoint extends IAudit { id?: number; type?: SkPointType; amount?: number; used?: boolean; cause?: string; expiredDate?: string; } export declare class SkPoint extends Audit { id: number; type: SkPointType; amount: number; used: boolean; cause: string; expiredDate: string; constructor(data?: ISkFile); causeText(): string; } export interface ISkPointAdd { type?: SkPointType; amount?: number; userId?: number; cause?: string; }