Files
2026-02-21 16:45:37 +08:00

6 lines
142 B
C#

namespace LitJson
{
internal delegate object ImporterFunc(object input);
public delegate TValue ImporterFunc<TJson, TValue>(TJson input);
}