6 lines
142 B
C#
6 lines
142 B
C#
namespace LitJson
|
|
{
|
|
internal delegate object ImporterFunc(object input);
|
|
public delegate TValue ImporterFunc<TJson, TValue>(TJson input);
|
|
}
|