1.0.2 • Published 6 months ago

@types/zengin-code v1.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
6 months ago

Installation

npm install --save @types/zengin-code

Summary

This package contains type definitions for zengin-code (https://github.com/zengin-code/zengin-js#readme).

Details

Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/zengin-code.

index.d.ts

// Type definitions for zengin-code 1.0
// Project: https://github.com/zengin-code/zengin-js#readme
// Definitions by: Ken Takahashi <https://github.com/takahash>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped

declare const zenginCode: zenginCode.ZenginCode;

declare namespace zenginCode {
    interface ZenginCode {
        [key: string]: Bank;
    }

    interface Branch {
        code: string;
        name: string;
        kana: string;
        hira: string;
        roma: string;
    }

    interface Bank {
        code: string;
        name: string;
        kana: string;
        hira: string;
        roma: string;
        branches: {
            [key: string]: Branch;
        };
    }
}

export = zenginCode;

Additional Details

  • Last updated: Thu, 05 Aug 2021 09:01:24 GMT
  • Dependencies: none
  • Global values: none

Credits

These definitions were written by Ken Takahashi.