mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-18 12:08:59 +08:00
10 lines
177 B
TypeScript
10 lines
177 B
TypeScript
|
|
/// <reference path="postal.d.ts" />
|
|
|
|
var channel = postal.channel("test");
|
|
|
|
channel.subscribe("test", function(data){ });
|
|
|
|
channel.publish("test", {id:1, name:"Test user"});
|
|
|