mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
15 lines
557 B
TypeScript
15 lines
557 B
TypeScript
// Type definitions for ngReact v0.3.0
|
|
// Project: https://github.com/ngReact/ngReact
|
|
// Definitions by: Vicky Lai <https://github.com/velveret>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
/// <reference types="angular"/>
|
|
/// <reference types="react"/>
|
|
|
|
declare module "ngreact" {
|
|
type ReactDirective = (reactComponentName: string | React.ComponentClass<any>,
|
|
propNames?: string[],
|
|
conf?: Object,
|
|
injectableProps?: Object) => angular.IDirective;
|
|
}
|