NRC Data

Data getter functions to retrieve NRC JSON.

Types

type NrcState = {
  id: string;
  code: string;
  number: {
    en: string;
    mm: string;
  };
  name: {
    en: string;
    mm: string;
  };
};

type NrcTownship = {
  id: string;
  code: string;
  short: {
    en: string;
    mm: string;
  };
  name: {
    en: string;
    mm: string;
  };
  stateId: string;
  stateCode: string;
};

type NrcType = {
  id: string;
  name: {
    en: string;
    mm: string;
  };
};

Functions

Get all NRC data

Get all NRC States

Get all NRC Townships

Get all NRC Types

Find NRC State by Id

Find NRC Township by Id

Find NRC Type by Id

Find NRC Townships with State Id

Last updated