mirror of
https://github.com/google/blockly.git
synced 2026-01-04 15:40:08 +01:00
17 lines
311 B
TypeScript
17 lines
311 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2020 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
/**
|
|
* @fileoverview Type definitions for the PHP generator.
|
|
* @author samelh@google.com (Sam El-Husseini)
|
|
*/
|
|
|
|
/// <reference path="core.d.ts" />
|
|
|
|
import * as Blockly from './core';
|
|
declare const php: any;
|
|
export = php;
|