Options
All
  • Public
  • Public/Protected
  • All
Menu

Module core/public-api

Index

Type Aliases

CustomizeInputExtendInput: "integer" | "float" | "year" | "month" | "boolean"

사용자 정의 입력란 확장 유형

CustomizeInputNativeInput: "text" | "number" | "password" | "checkbox" | "radio" | "file" | "textarea" | "select" | "date" | "datetime"

사용자 정의 입력란 기본 유형

사용자 정의 입력란 유형

RequestSystemMessage: null

시스템 상태 요청 메시지 본문 구조

see

http://imrbiz.co.kr/documents/systems/system-monitor.html

RequestSystemUsageAbortMessage: null

시스템 사용량 중계 취소 메시지 본문 구조

see

http://imrbiz.co.kr/documents/systems/system-monitor.html

RequestSystemUsageMessage: null

시스템 사용량 중계 메세지 본문 구조

see

http://imrbiz.co.kr/documents/systems/system-monitor.html

Functions

  • multiple$<T>(observables: any, throttling?: any): void
  • deprecated

    Using combineLatest$ from @js-dot/core

    Type Parameters

    • T = any

    Parameters

    • observables: any
    • Optional throttling: any

    Returns void

  • 인자를 객체로 병합 후 일정 시간 후 실행하는 함수를 생성

    example
    const delayedLog = throttleMap(dataset => {
    console.log(dataset)
    });
    // `{foo: 1, bar: 2}` 0.24초 지연 실행
    delayedLog('foo', 1);
    delayedLog('bar', 2);

    // `{baz: 3}` 즉시 실행
    delayedLog({baz: 3});

    Type Parameters

    • T extends string = string

    • V = any

    Parameters

    Returns ThrottleMapFunction<T, V>

Generated using TypeDoc