/******************************************************************************* * Copyright (c) 2012-2017 Codenvy, S.A. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * Codenvy, S.A. - initial API and implementation *******************************************************************************/ package org.eclipse.che.plugin.web.shared; /** * Shared constants for Web plugin */ public final class Constants { public static final String LANGUAGE = "language"; /** TS Project Type ID */ public static String TS_PROJECT_TYPE_ID = "typescript"; /** TS Language */ public static String TS_LANG = "typescript"; /** Default extension for TS files */ public static String TS_EXT = "ts"; /** TypeScript file mime type*/ public static final String TS_MIME_TYPE = "application/typescript"; private Constants() { } }