Files
gerrit/polygerrit-ui/app/constants/constants.d.ts
Dmitrii Filippov a8031cfe2a Convert rest-client-behavior.js to .ts
This change shows how to import .js files from a .ts file.

Change-Id: I432c92fdb989f1f6e32ef95aa011c846ec2e9019
2020-06-30 18:36:59 +00:00

24 lines
788 B
TypeScript

/**
* @license
* Copyright (C) 2020 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export type ChangeStatus = any;
export namespace ChangeStatus {
export const ABANDONED: string;
export const MERGED: string;
export const NEW: string;
}