Skip to content

Commit 0a0e2c4

Browse files
committed
adds copyright notice
1 parent b95f236 commit 0a0e2c4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+413
-0
lines changed

src/index.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
export { DeluxeSignal } from "./org/osflash/signals/DeluxeSignal";
29
export { GenericEvent } from "./org/osflash/signals/events/GenericEvent";
310
export { IBubbleEventHandler } from "./org/osflash/signals/events/IBubbleEventHandler";

src/org/osflash/signals/DeluxeSignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { PrioritySignal } from "./PrioritySignal";
29
import { SlotList } from "./SlotList";
310
import { IEvent } from "./events/IEvent";

src/org/osflash/signals/IOnceSignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { ISlot } from "./ISlot";
29

310
/**

src/org/osflash/signals/IPrioritySignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { ISlot } from "./ISlot";
29
import { ISignal } from "./ISignal";
310

src/org/osflash/signals/ISignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { ISlot } from "./ISlot";
29
import { IOnceSignal } from "./IOnceSignal";
310

src/org/osflash/signals/ISlot.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
/**
29
* The ISlot interface defines the basic properties of a
310
* listener associated with a Signal.

src/org/osflash/signals/MonoSignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { ISignal } from "./ISignal";
29
import { Slot } from "./Slot";
310
import { ISlot } from "./ISlot";

src/org/osflash/signals/OnceSignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { IOnceSignal } from "./IOnceSignal";
29
import { SlotList } from "./SlotList";
310
import { ISlot } from "./ISlot";

src/org/osflash/signals/PrioritySignal.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { Signal } from "./Signal";
29
import { IPrioritySignal } from "./IPrioritySignal";
310
import { ISlot } from "./ISlot";

src/org/osflash/signals/Promise.ts

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
/**
2+
* Copyright (c) 2017-present, RobotlegsJS. All Rights Reserved.
3+
*
4+
* This source code is licensed under the MIT license found in the
5+
* LICENSE file in the root directory of this source tree.
6+
*/
7+
18
import { ISlot } from "./ISlot";
29
import { OnceSignal } from "./OnceSignal";
310

0 commit comments

Comments
 (0)