/** * Copyright (c) 2020 - 2022. The Nuinalp Authors. All rights reserved. * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ import { Model } from '@nuinalp/api-core/browser'; import { IPostalCodeResponse } from '../types'; export default class PostalCode extends Model { protected static adapter: any; static search(postal_code: string): Promise; }