mirror of
https://github.com/actions/runner.git
synced 2025-12-19 00:36:55 +00:00
12 lines
252 B
C#
12 lines
252 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
|
|
namespace GitHub.DistributedTask.Expressions
|
|
{
|
|
[EditorBrowsable(EditorBrowsableState.Never)]
|
|
public interface IReadOnlyArray : IReadOnlyList<Object>
|
|
{
|
|
}
|
|
}
|