blob: 83a8e5d6c5b1daa75d4daf911db949a32aa9c540 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
//
// Copyright (c) ZeroC, Inc. All rights reserved.
//
declare module "ice"
{
namespace Ice
{
/**
* Generates a universally unique identifier (UUID).
* @return The UUID.
*/
function generateUUID():string;
}
}
|